home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
snpd0492.zip
/
DOW.H
< prev
next >
Wrap
Text File
|
1992-04-13
|
242b
|
9 lines
/*
** DOW.H - day-of-week macro. From the FidoNet CECHO - by
** Paul Schlyter.
*/
#define dow(y,m,d) \
( ( ( 3*(y) - (7*((y)+((m)+9)/12))/4 + (23*(m))/9 + (d) + 2 \
+ 15 - (((y)-((m)<3))/100+1) * 3 / 4 ) % 7 ) )